home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 4 / BBS in a Box - Macintosh - Volume IV (January 1992) (BBS in a Box).iso / Files / Game / T / tads120.cpt / tads120 Folder / TRIVIAL.T < prev   
Encoding:
Text File  |  1991-10-01  |  339 b   |  22 lines  |  [TEXT/????]

  1. init: function;
  2. pardon: function;
  3. init: function
  4. {
  5.     local l;
  6.     
  7.     l := ['one' 'two' 'three'];
  8.     say( l[2] );
  9. }
  10. pardon: function
  11. {
  12. }
  13. numObj: object;
  14. strObj: object;
  15. againVerb: object verb = 'again' 'g';
  16. takeVerb: object verb = 'take' 'get';
  17. Me: object;
  18. quitVerb: object
  19.     verb = 'quit'
  20.     action( actor ) = { quit(); abort; }
  21. ;
  22.